From: Philipp Stephani Date: Sat, 15 Jun 2019 17:02:25 +0000 (+0200) Subject: * src/xfaces.c (dump_realized_face): Fix incorrect format string. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~19^2~2881 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=7e53f4f2da0ec6dd2284db39c00657dec2566886;p=emacs.git * src/xfaces.c (dump_realized_face): Fix incorrect format string. --- diff --git a/src/xfaces.c b/src/xfaces.c index fb174ab4fac..012cc96470d 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6418,7 +6418,7 @@ dump_realized_face (struct face *face) fprintf (stderr, "underline: %d (%s)\n", face->underline_p, SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))); - fprintf (stderr, "hash: " PRIuPTR "\n", face->hash); + fprintf (stderr, "hash: %" PRIuPTR "\n", face->hash); }